home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exenyi.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  662b  |  20 lines

  1. /*****************************************************************************
  2.  
  3.     ExeNYI()
  4.  
  5.     This function handles a TECO command that is "not yet implemented" by
  6. displaying the message "not yet implemented" and failing.
  7.  
  8. *****************************************************************************/
  9.  
  10. #include "zport.h"        /* define portability identifiers */
  11. #include "tecoc.h"        /* define general identifiers */
  12. #include "defext.h"        /* define external global variables */
  13. #include "deferr.h"        /* define identifiers for error messages */
  14.  
  15. DEFAULT ExeNYI()            /* command not yet implemented */
  16. {
  17.     ErrMsg(ERR_NYI);        /* NYI = not yet implemented */
  18.     return FAILURE;
  19. }
  20.